home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 3 / Cream of the Crop 3.iso / utility / fork33.zip / FORK.TXT < prev    next >
Text File  |  1994-04-01  |  2KB  |  54 lines

  1. Fork v3.3
  2. =========
  3. "Fork" is freeware.  Individuals and institutions have the right to freely 
  4. use Fork, and the right to freely distribute Fork in an unmodified form at
  5. no cost.
  6.  
  7. You may also distribute the debug script (which generates the Fork.COM file)
  8. on computer networks and echoes, so long as it is done so unmodified and
  9. includes this file (Fork.TXT).
  10.  
  11. The author makes no guarantees or warrantees on this software, nor will the 
  12. author be responsible for any damages due to the use or misuse of this soft-
  13. ware.  Use at your own risk.
  14.  
  15. Usage: fork [/cosvf] [drv:][path]filename] [< stdin] [> stdout]
  16.  
  17. Fork works as a normal DOS pipe reading from standard input and sending to
  18. standard output.  However, Fork also redirects the input either to the con-
  19. sole (via BIOS Teletype video) or to another file.
  20.  
  21. If you want Fork to output to the screen as well as to a file, use the /V
  22. option.  (If you want the output sent through DOS FastPutChar, use /F).
  23.  
  24. Fork will append the output to the end of the file unless you use the /O
  25. (overwrite) option.
  26.  
  27. To decode the debug script (Fork.DBG):
  28. ======================================
  29.  debug < fork.dbg
  30.  
  31. Example uses:
  32. =============
  33.  fork /?
  34.  dir |fork > foo.bar
  35.  dir |fork foo.bar
  36.  type reify.txt |fork /o foo.bar
  37.  type 2copies.txt |fork /v /o copy-1.txt > copy-2.txt
  38.  command /c homemade.bat |fork echoed.asc
  39.  
  40. History of Fork versions:
  41. =========================  
  42.  3.3  Slight rewriting.  Added /S option for backward compatability.
  43.  3.2  Slight rewriting.  Added /C option for future expansion.
  44.  3.1  Slight rewriting.  Added help screen, /V and /F options.
  45.  3.0  Rewritten in assembly. Echo to BIOS, not FastPutChar. Added /O option.
  46.  2.1  Rewritten in HLL.  Added ability to echo to file.
  47.  1.x  First homemade kludges made via DEBUG, echoed to FastPutChar (Int 29h).
  48.       (Beta-versions, really).
  49.  
  50. Copyright (c)1992-94 Robert Rothenburg Walking-Owl, All Rights Reserved
  51.  
  52. E-Mail the author at <Robert.Rothenburg@asb.com>
  53.  
  54.